Search Tutorials

The Tutorials in this series are created using Python 3.4.3, IPython 5.1.0 on Ubuntu 12.04. Python is a programming language that lets you work more quickly and integrate your systems more effectively. Read more


About 39 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : Python 3.4.3 - English

Outline: Create matrices from lists asmatrix method arange and reshape methods Basic matrix operation Addition, subtraction and multiplication of a matrix Determinant of a matrix eye(..

Intermediate

Foss : Python 3.4.3 - English

Outline: flatten() function Example to convert a multidimensional matrix to single dimension matrix Frobenius norm of a matrix Demonstration of Frobenius norm of a matrix Inverse of a m..

Intermediate

Foss : Python 3.4.3 - English

Outline: Generating a Least Square fit line Generating L vs t square loadtxt function Usage of numpy library Plotting L vs t square Steps for least square fit line Matrix formulation ..

Intermediate

Foss : Python 3.4.3 - English

Outline: Data types in Python Demonstration of int, float and complex data types with examples Different functions associated with int data type Complex numbers and their functions Bool..

Intermediate

Foss : Python 3.4.3 - English

Outline: List, string and tuple sequence data types with examples How to access a list using index numbers? Access the string elements Access the tuple elements How to add different seq..

Intermediate

Foss : Python 3.4.3 - English

Outline: Various output statements Print a string Print a string with newline character How to use format operators? Example for integer format Example for string format Example for f..

Intermediate

Foss : Python 3.4.3 - English

Outline: if condition statement Demonstration of if statement with example if/else condition statement with example Importance of indentation in a program Usage of colon in program Con..

Intermediate

Foss : Python 3.4.3 - English

Outline: Explanation of while loop Demonstration of while loop with example Print the squares of all the even numbers below 10 using while loop How to use for loop? Print the squares of..

Intermediate

Foss : Python 3.4.3 - English

Outline: Various manipulation in lists Slicing of lists Syntax and demonstration of slicing of lists How to use step value in slicing Striding of list Examples with various parameters ..

Intermediate

Foss : Python 3.4.3 - English

Outline: How to slice a string Various way to get substrings using index Reverse a string How to check if a given string is a palindrome or not Replace characters in a string Convert a..

Intermediate

Foss : Python 3.4.3 - English

Outline: What are tuples? How to declare tuples? Examples to declare tuples Demonstration of creating tuple Accessing tuples by their index positions Iteration over tuples Demonstrati..

Intermediate

Foss : Python 3.4.3 - English

Outline: Overview of dictionaries Creating an empty dictionary Creating a non empty dictionary About key:value pair How to access the dictionary elements Demonstration of wrong key Ad..

Intermediate

Foss : Python 3.4.3 - English

Outline: What are sets in python? Input sets Create sets How to create empty sets? Operations on sets Add and remove methods Union and intersection methods Difference and symmetric_d..

Intermediate

Foss : Python 3.4.3 - English

Outline: About Functions How to define a function Example for defining a function Calling a function with arguments Calling a function without arguments Return values from a function ..

Advanced

Foss : Python 3.4.3 - English

Outline: Functions with default arguments Various examples for default arguments Interchanging the default and non-default arguments Call a function with keyword arguments Call a functi..

Advanced

Foss : Python 3.4.3 - English

Outline: Python modules Run a Python script from command line How to import modules in python scripts? How to import required functions from a module? Usage of namespace Advantages of ..

Advanced

Foss : Python 3.4.3 - English

Outline: About Python modules What is importing? How to write a function and save it as a script Run a python script Import a module Example to import a module usage of __name__ varia..

Advanced

Foss : Python 3.4.3 - English

Outline: What is software testing? Write a simple function How to write test cases? Create simple tests for a function Run the script and test the code Automate tests Example for test..

Advanced

Foss : Python 3.4.3 - English

Outline: Errors in Python Syntax errors and exception Exceptions with example Syntax error with example Demonstration of ValueError exception Demonstration of ZeroDivisionError excepti..

Advanced